home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Java Certification Exam Guide
/
McGrawwHill-JavaCertificationExamGuide.iso
/
pc
/
Web Links and Code
/
rev
/
chap9
/
q1.java
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Source
|
1997-05-08
|
276 b
|
17 lines
class Example1 {
public static void main(String[] args) {
Example1 e = new Example1();
e.test(5);
}
int test(int i) {
System.out.println("int");
return 1;
}
void test(long i) {
System.out.println("long");
}
}